Documentation fixes.
authorMatthias Clasen <matthiasc@src.gnome.org>
Tue, 26 Oct 2004 17:35:41 +0000 (17:35 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 26 Oct 2004 17:35:41 +0000 (17:35 +0000)
ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
docs/reference/ChangeLog
docs/reference/gdk-pixbuf/tmpl/scaling.sgml
gdk/x11/gdkdisplay-x11.c

index 62ca9d42757ca682fd30a94274d2da3397e9ccc8..56cac6353a066527ce6f2745e7eded0655e5ec27 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-10-26  Matthias Clasen  <mclasen@redhat.com>
+
+       * gdk/x11/gdkdisplay-x11.c (gdk_display_store_clipboard): Fix the 
+       doc comment.
+
 2004-10-26  Anders Carlsson  <andersca@imendio.com>
 
        * gtk/gtktextbuffer.c: (gtk_text_buffer_finalize),
index 62ca9d42757ca682fd30a94274d2da3397e9ccc8..56cac6353a066527ce6f2745e7eded0655e5ec27 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-26  Matthias Clasen  <mclasen@redhat.com>
+
+       * gdk/x11/gdkdisplay-x11.c (gdk_display_store_clipboard): Fix the 
+       doc comment.
+
 2004-10-26  Anders Carlsson  <andersca@imendio.com>
 
        * gtk/gtktextbuffer.c: (gtk_text_buffer_finalize),
index 62ca9d42757ca682fd30a94274d2da3397e9ccc8..56cac6353a066527ce6f2745e7eded0655e5ec27 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-26  Matthias Clasen  <mclasen@redhat.com>
+
+       * gdk/x11/gdkdisplay-x11.c (gdk_display_store_clipboard): Fix the 
+       doc comment.
+
 2004-10-26  Anders Carlsson  <andersca@imendio.com>
 
        * gtk/gtktextbuffer.c: (gtk_text_buffer_finalize),
index 62ca9d42757ca682fd30a94274d2da3397e9ccc8..56cac6353a066527ce6f2745e7eded0655e5ec27 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-26  Matthias Clasen  <mclasen@redhat.com>
+
+       * gdk/x11/gdkdisplay-x11.c (gdk_display_store_clipboard): Fix the 
+       doc comment.
+
 2004-10-26  Anders Carlsson  <andersca@imendio.com>
 
        * gtk/gtktextbuffer.c: (gtk_text_buffer_finalize),
index 1d7187b83da00946079b301e9bee27e5b8bd53a7..cc66552365209900ad0db981195629e27ba94e50 100644 (file)
@@ -1,5 +1,7 @@
 2004-10-26  Matthias Clasen  <mclasen@redhat.com>
 
+       * gdk-pixbuf/tmpl/scaling.sgml: Document GdkPixbufRotation. 
+
        * gtk/gtk-update-icon-cache.1: Regenerated.
 
 2004-10-25  Anders Carlsson  <andersca@gnome.org>
index c3a6bc38c781ccb6a10133988829627ab46a7e96..597e98772d25a99ecb588377f2202de4f35d17b2 100644 (file)
@@ -202,13 +202,14 @@ End:
 
 <!-- ##### ENUM GdkPixbufRotation ##### -->
 <para>
-
+The possible rotations which can be passed to gdk_pixbuf_rotate_simple().
+To make them easier to use, their numerical values are the actual degrees.
 </para>
 
-@GDK_PIXBUF_ROTATE_NONE: 
-@GDK_PIXBUF_ROTATE_COUNTERCLOCKWISE: 
-@GDK_PIXBUF_ROTATE_UPSIDEDOWN: 
-@GDK_PIXBUF_ROTATE_CLOCKWISE: 
+@GDK_PIXBUF_ROTATE_NONE: No rotation.
+@GDK_PIXBUF_ROTATE_COUNTERCLOCKWISE: Rotate by 90 degrees.
+@GDK_PIXBUF_ROTATE_UPSIDEDOWN: Rotate by 180 degrees.
+@GDK_PIXBUF_ROTATE_CLOCKWISE: Rotate by 270 degrees.
 
 <!-- ##### FUNCTION gdk_pixbuf_rotate_simple ##### -->
 <para>
index 588285dca008b4d6eda20fedd9a967f57f69b7f3..4db944d2bab8fb9d0cade5945d4571f86b433f8c 100644 (file)
@@ -1084,7 +1084,7 @@ gboolean gdk_display_request_selection_notification  (GdkDisplay *display,
  * @display: a #GdkDisplay
  *
  * Returns whether the speicifed display supports clipboard
- * persistance; if it's possible to store the clipboard data after an
+ * persistance; i.e. if it's possible to store the clipboard data after an
  * application has quit. On X11 this checks if a clipboard daemon is
  * running.
  *
@@ -1104,16 +1104,16 @@ gdk_display_supports_clipboard_persistence (GdkDisplay *display)
  * gdk_display_store_clipboard
  * @display:          a #GdkDisplay
  * @clipboard_window: a #GdkWindow belonging to the clipboard owner
- * @time            a timestamp
- * @targets:         an array of targets that should be saved, or NULL 
+ * @time_:            a timestamp
+ * @targets:         an array of targets that should be saved, or %NULL 
  *                    if all available targets should be saved.
- * @n_targets:        length of the array
+ * @n_targets:        length of the @targets array
  *
  * Issues a request to the the clipboard manager to store the
  * clipboard data. On X11, this is a special program that works
  * according to the freedesktop clipboard specification, available at
  * <ulink url="http://www.freedesktop.org/Standards/clipboard-manager-spec">
- * http://www.freedesktop.org/Standards/clipboard-manager-spec</ulink>
+ * http://www.freedesktop.org/Standards/clipboard-manager-spec</ulink>.
  *
  * Since: 2.6
  */